home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 September (IDG) / Sep99.iso / MarkzScout™ 14-day trial / Layout Scripts / LogStartStop.m1s < prev    next >
Encoding:
Text File  |  1999-03-29  |  373 b   |  12 lines  |  [TEXT/ttxt]

  1. //
  2. // Very simple logging script: record start & stop of the layout
  3. // in file with same name as layout but with an extra '.log' appended.
  4. // Check JobTimeLogger.m1s for a more extensive example
  5. //
  6. proc OnStartLayout
  7.   write it+".log", "Layout " + it + " started at " + Date()
  8. end proc
  9.  
  10. proc OnStopLayout
  11.   write it+".log", "Layout " + it + " stopped at " + Date()
  12. end proc